home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form TitleScreen
- BorderStyle = 1 'Fixed Single
- Caption = "Title Screen"
- ClientHeight = 3195
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 4680
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3195
- ScaleWidth = 4680
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton Command1
- Caption = "E&xit"
- Default = -1 'True
- Height = 375
- Left = 240
- TabIndex = 0
- Top = 2640
- Width = 4215
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Caption = $"TitleScreen.frx":0000
- Height = 855
- Left = 120
- TabIndex = 1
- Top = 240
- Visible = 0 'False
- Width = 4455
- End
- Attribute VB_Name = "TitleScreen"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Unload Me
- End
- End Sub
- Private Sub RegWizardPro1_EvaluationExpired()
- RegWizardPro1.ShowRegDialog
- End
- End Sub
- Private Sub RegWizardPro1_ShowRegInfo()
- Load OrderInfo
- OrderInfo.Show vbModal
- End Sub
- Private Sub RegWizardPro1_UserReRegistered(ByVal UserName As String, ByVal OldRegCode As String, ByVal NewRegCode As String)
- Dim Response As Long
- Response = MsgBox("Your registration code has changed. Please write this down for future reference:" & vbCrLf & "Registration Name: " & UserName & vbCrLf & "Registration Code: " & NewRegCode, vbOKOnly + vbCritical, App.Title)
- End Sub
-